Package pl. wendigo. chrome. api. dom
Types
AttributeModifiedEvent
Link copied to clipboard
data class AttributeModifiedEvent(nodeId: NodeId, name: String, value: String) : Event
Content copied to clipboard
AttributeRemovedEvent
Link copied to clipboard
BackendNode
Link copied to clipboard
data class BackendNode(nodeType: Int, nodeName: String, backendNodeId: BackendNodeId)
Content copied to clipboard
BackendNodeId
Link copied to clipboard
CharacterDataModifiedEvent
Link copied to clipboard
data class CharacterDataModifiedEvent(nodeId: NodeId, characterData: String) : Event
Content copied to clipboard
ChildNodeCountUpdatedEvent
Link copied to clipboard
data class ChildNodeCountUpdatedEvent(nodeId: NodeId, childNodeCount: Int) : Event
Content copied to clipboard
ChildNodeInsertedEvent
Link copied to clipboard
data class ChildNodeInsertedEvent(parentNodeId: NodeId, previousNodeId: NodeId, node: Node) : Event
Content copied to clipboard
ChildNodeRemovedEvent
Link copied to clipboard
data class ChildNodeRemovedEvent(parentNodeId: NodeId, nodeId: NodeId) : Event
Content copied to clipboard
CollectClassNamesFromSubtreeRequest
Link copied to clipboard
CollectClassNamesFromSubtreeResponse
Link copied to clipboard
data class CollectClassNamesFromSubtreeResponse(classNames: List<String>)
Content copied to clipboard
Represents response frame that is returned from DOM#collectClassNamesFromSubtree operation call.
CopyToRequest
Link copied to clipboard
data class CopyToRequest(nodeId: NodeId, targetNodeId: NodeId, insertBeforeNodeId: NodeId?)
Content copied to clipboard
Represents request frame that can be used with DOM#copyTo operation call.
CopyToResponse
Link copied to clipboard
CSSComputedStyleProperty
Link copied to clipboard
DescribeNodeRequest
Link copied to clipboard
data class DescribeNodeRequest(nodeId: NodeId?, backendNodeId: BackendNodeId?, objectId: RemoteObjectId?, depth: Int?, pierce: Boolean?)
Content copied to clipboard
Represents request frame that can be used with DOM#describeNode operation call.
DescribeNodeResponse
Link copied to clipboard
DiscardSearchResultsRequest
Link copied to clipboard
DistributedNodesUpdatedEvent
Link copied to clipboard
data class DistributedNodesUpdatedEvent(insertionPointId: NodeId, distributedNodes: List<BackendNode>) : Event
Content copied to clipboard
FocusRequest
Link copied to clipboard
data class FocusRequest(nodeId: NodeId?, backendNodeId: BackendNodeId?, objectId: RemoteObjectId?)
Content copied to clipboard
Represents request frame that can be used with DOM#focus operation call.
GetAttributesRequest
Link copied to clipboard
GetAttributesResponse
Link copied to clipboard
GetBoxModelRequest
Link copied to clipboard
data class GetBoxModelRequest(nodeId: NodeId?, backendNodeId: BackendNodeId?, objectId: RemoteObjectId?)
Content copied to clipboard
Represents request frame that can be used with DOM#getBoxModel operation call.
GetBoxModelResponse
Link copied to clipboard
GetContentQuadsRequest
Link copied to clipboard
data class GetContentQuadsRequest(nodeId: NodeId?, backendNodeId: BackendNodeId?, objectId: RemoteObjectId?)
Content copied to clipboard
Represents request frame that can be used with DOM#getContentQuads operation call.
GetContentQuadsResponse
Link copied to clipboard
GetDocumentRequest
Link copied to clipboard
GetDocumentResponse
Link copied to clipboard
GetFileInfoRequest
Link copied to clipboard
GetFileInfoResponse
Link copied to clipboard
GetFlattenedDocumentRequest
Link copied to clipboard
GetFlattenedDocumentResponse
Link copied to clipboard
GetFrameOwnerRequest
Link copied to clipboard
GetFrameOwnerResponse
Link copied to clipboard
data class GetFrameOwnerResponse(backendNodeId: BackendNodeId, nodeId: NodeId?)
Content copied to clipboard
Represents response frame that is returned from DOM#getFrameOwner operation call.
GetNodeForLocationRequest
Link copied to clipboard
data class GetNodeForLocationRequest(x: Int, y: Int, includeUserAgentShadowDOM: Boolean?, ignorePointerEventsNone: Boolean?)
Content copied to clipboard
Represents request frame that can be used with DOM#getNodeForLocation operation call.
GetNodeForLocationResponse
Link copied to clipboard
data class GetNodeForLocationResponse(backendNodeId: BackendNodeId, frameId: FrameId, nodeId: NodeId?)
Content copied to clipboard
Represents response frame that is returned from DOM#getNodeForLocation operation call.
GetNodesForSubtreeByStyleRequest
Link copied to clipboard
data class GetNodesForSubtreeByStyleRequest(nodeId: NodeId, computedStyles: List<CSSComputedStyleProperty>, pierce: Boolean?)
Content copied to clipboard
Represents request frame that can be used with DOM#getNodesForSubtreeByStyle operation call.
GetNodesForSubtreeByStyleResponse
Link copied to clipboard
GetNodeStackTracesRequest
Link copied to clipboard
GetNodeStackTracesResponse
Link copied to clipboard
GetOuterHTMLRequest
Link copied to clipboard
data class GetOuterHTMLRequest(nodeId: NodeId?, backendNodeId: BackendNodeId?, objectId: RemoteObjectId?)
Content copied to clipboard
Represents request frame that can be used with DOM#getOuterHTML operation call.
GetOuterHTMLResponse
Link copied to clipboard
GetRelayoutBoundaryRequest
Link copied to clipboard
GetRelayoutBoundaryResponse
Link copied to clipboard
GetSearchResultsRequest
Link copied to clipboard
data class GetSearchResultsRequest(searchId: String, fromIndex: Int, toIndex: Int)
Content copied to clipboard
Represents request frame that can be used with DOM#getSearchResults operation call.
GetSearchResultsResponse
Link copied to clipboard
InlineStyleInvalidatedEvent
Link copied to clipboard
MoveToRequest
Link copied to clipboard
data class MoveToRequest(nodeId: NodeId, targetNodeId: NodeId, insertBeforeNodeId: NodeId?)
Content copied to clipboard
Represents request frame that can be used with DOM#moveTo operation call.
MoveToResponse
Link copied to clipboard
Node
Link copied to clipboard
data class Node(nodeId: NodeId, parentId: NodeId?, backendNodeId: BackendNodeId, nodeType: Int, nodeName: String, localName: String, nodeValue: String, childNodeCount: Int?, children: List<Node>?, attributes: List<String>?, documentURL: String?, baseURL: String?, publicId: String?, systemId: String?, internalSubset: String?, xmlVersion: String?, name: String?, value: String?, pseudoType: PseudoType?, shadowRootType: ShadowRootType?, frameId: FrameId?, contentDocument: Node?, shadowRoots: List<Node>?, templateContent: Node?, pseudoElements: List<Node>?, importedDocument: Node?, distributedNodes: List<BackendNode>?, isSVG: Boolean?)
Content copied to clipboard
PerformSearchRequest
Link copied to clipboard
data class PerformSearchRequest(query: String, includeUserAgentShadowDOM: Boolean?)
Content copied to clipboard
Represents request frame that can be used with DOM#performSearch operation call.
PerformSearchResponse
Link copied to clipboard
PseudoElementAddedEvent
Link copied to clipboard
data class PseudoElementAddedEvent(parentId: NodeId, pseudoElement: Node) : Event
Content copied to clipboard
PseudoElementRemovedEvent
Link copied to clipboard
data class PseudoElementRemovedEvent(parentId: NodeId, pseudoElementId: NodeId) : Event
Content copied to clipboard
PseudoType
Link copied to clipboard
PushNodeByPathToFrontendRequest
Link copied to clipboard
PushNodeByPathToFrontendResponse
Link copied to clipboard
PushNodesByBackendIdsToFrontendRequest
Link copied to clipboard
data class PushNodesByBackendIdsToFrontendRequest(backendNodeIds: List<BackendNodeId>)
Content copied to clipboard
Represents request frame that can be used with DOM#pushNodesByBackendIdsToFrontend operation call.
PushNodesByBackendIdsToFrontendResponse
Link copied to clipboard
data class PushNodesByBackendIdsToFrontendResponse(nodeIds: List<NodeId>)
Content copied to clipboard
Represents response frame that is returned from DOM#pushNodesByBackendIdsToFrontend operation call.
QuerySelectorAllRequest
Link copied to clipboard
QuerySelectorAllResponse
Link copied to clipboard
QuerySelectorRequest
Link copied to clipboard
QuerySelectorResponse
Link copied to clipboard
RemoveAttributeRequest
Link copied to clipboard
RemoveNodeRequest
Link copied to clipboard
RequestChildNodesRequest
Link copied to clipboard
data class RequestChildNodesRequest(nodeId: NodeId, depth: Int?, pierce: Boolean?)
Content copied to clipboard
Represents request frame that can be used with DOM#requestChildNodes operation call.
RequestNodeRequest
Link copied to clipboard
RequestNodeResponse
Link copied to clipboard
ResolveNodeRequest
Link copied to clipboard
data class ResolveNodeRequest(nodeId: NodeId?, backendNodeId: BackendNodeId?, objectGroup: String?, executionContextId: ExecutionContextId?)
Content copied to clipboard
Represents request frame that can be used with DOM#resolveNode operation call.
ResolveNodeResponse
Link copied to clipboard
ScrollIntoViewIfNeededRequest
Link copied to clipboard
data class ScrollIntoViewIfNeededRequest(nodeId: NodeId?, backendNodeId: BackendNodeId?, objectId: RemoteObjectId?, rect: Rect?)
Content copied to clipboard
Represents request frame that can be used with DOM#scrollIntoViewIfNeeded operation call.
SetAttributesAsTextRequest
Link copied to clipboard
data class SetAttributesAsTextRequest(nodeId: NodeId, text: String, name: String?)
Content copied to clipboard
Represents request frame that can be used with DOM#setAttributesAsText operation call.
SetAttributeValueRequest
Link copied to clipboard
data class SetAttributeValueRequest(nodeId: NodeId, name: String, value: String)
Content copied to clipboard
Represents request frame that can be used with DOM#setAttributeValue operation call.
SetChildNodesEvent
Link copied to clipboard
data class SetChildNodesEvent(parentId: NodeId, nodes: List<Node>) : Event
Content copied to clipboard
SetFileInputFilesRequest
Link copied to clipboard
data class SetFileInputFilesRequest(files: List<String>, nodeId: NodeId?, backendNodeId: BackendNodeId?, objectId: RemoteObjectId?)
Content copied to clipboard
Represents request frame that can be used with DOM#setFileInputFiles operation call.
SetInspectedNodeRequest
Link copied to clipboard
SetNodeNameRequest
Link copied to clipboard
SetNodeNameResponse
Link copied to clipboard
SetNodeStackTracesEnabledRequest
Link copied to clipboard
SetNodeValueRequest
Link copied to clipboard
SetOuterHTMLRequest
Link copied to clipboard
ShadowRootPoppedEvent
Link copied to clipboard
ShadowRootPushedEvent
Link copied to clipboard
ShadowRootType
Link copied to clipboard
ShapeOutsideInfo
Link copied to clipboard
data class ShapeOutsideInfo(bounds: Quad, shape: List<JsonElement>, marginShape: List<JsonElement>)
Content copied to clipboard